Skip to main content

Delete Policy

Route

/v2/policies/{id}

Description

Remove a policy from the system. This operation is irreversible and will permanently delete the policy configuration.

Method

DELETE

Inputs

ParameterTypeRequiredDescription
idstringYesThe id of the policy to delete

Output

FieldTypeDescription
errorsarray[Error]Any errors encountered during deletion

Rate Limit

  • 60 requests per minute per API key
  • 5 concurrent requests per endpoint

Example Response

{
"errors": []
}

Error Response

{
"errors": [
{
"code": 404,
"message": "Policy not found"
}
]
}